Installation Helpdesk
Frappe Helpdesk can be installed in several ways depending on your requirements. You can choose to install it on Frappe Cloud, the cloud version of Frappe Helpdesk, or on your own server. The following sections describe the installation methods in detail.
Self Hosting
Production Setup
First, download the installation script:
wget https://frappe.io/easy-install.pyRun this command to install Frappe Helpdesk:
python3 ./easy-install.py deploy \ --project=helpdesk_prod_setup \ --email=your_email.example.com \ --image=ghcr.io/frappe/helpdesk \ --version=stable \ --app=helpdesk \ --sitename subdomain.domain.tld
You need to change two things in this command:
- Replace
your_email.example.comwith your actual email address - Replace
subdomain.domain.tldwith your website domain name
The setup will take about 5 minutes. After that, you'll have a ready-to-use Frappe Helpdesk instance.
Development Setup
If you want to set up Frappe Helpdesk for development, please check our GitHub repository for detailed instructions.
Frequently Asked Questions
I have an existing self-hosted ERPNext site. How can I install Frappe Helpdesk on it?
You can install Frappe Helpdesk just like any other Frappe app. Following are the commands to get and install the app:
bench get-app helpdesk --branch main bench --site your_site_name install-app helpdesk
I am facing issues during installation. What should I do?
If you encounter any issues during installation, please raise a GitHub issue with the error message and the steps you followed.